home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-04-06 | 1.7 KB | 54 lines | [TEXT/MSWD] |
- *
- * Define pathname labels *
- *
- *
- DEFINE "TRANSPATH" "SCSI:BBS:TRANS"
- DEFINE "TICPATH" "SCSI:BBS:TIC"
- *
- *
- **************************************************************
- * Define macro to change level for SDN files *
- * *
- * This macro loads the section, checks for files under 30 *
- * days and removes them, then changes clearance on remaing *
- * files to level 10, then adds in the original section and *
- * delete/dups and purge removes the latest entries. Sorts *
- * and then saves the new file section. *
- * *
- *This makes all SDN files over 30 days *
- * accessable only by paying users. Under 30 days are *
- * available for download by level 0 users, as per SDN policy *
- **************************************************************
- CLEAR
- DEFINEMACRO "ChngLevl"
- LOAD "@1"
- SORT/DATE
- DELETE/AGE "<30"
- PURGE
- SETCLRNC "0" "10"
- ADD "@1"
- DELETE/DUPS
- PURGE
- SORT/TITLE
- SAVE "@1"
- ENDMACRO
- *
- ******************************************************
- * Change SDN levels *
- * go do the macro *
- ******************************************************
- ChngLevl "TICPATH:IBM:SDN:SDN_BUSI:SDN_BUSI"
- ChngLevl "TICPATH:IBM:SDN:SDN_COMM:SDN_COMM"
- ChngLevl "TICPATH:IBM:SDN:SDN_DATA:SDN_DATA"
- ChngLevl "TICPATH:IBM:SDN:SDN_GRAP:SDN_GRAP"
- ChngLevl "TICPATH:IBM:SDN:SDN_MISC:SDN_MISC"
- ChngLevl "TICPATH:IBM:SDN:SDN_UTIL:SDN_UTIL"
- ChngLevl "TICPATH:IBM:SDN:SDN_WORD:SDN_WORD"
- ChngLevl "TICPATH:IBM:SDN:SDN_OTHR:SDN_OTHR"
- ChngLevl "TICPATH:IBM:SDN:SDN_GAME:SDN_GAME"
- *
- CHAIN "SCSI:BBS:FSPC(Main)"
- *
- END
-
-